home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / ip / dialupip / dialupip2.0 / src / Makefile.inc < prev    next >
Encoding:
Makefile  |  1991-01-11  |  1.7 KB  |  48 lines

  1. ##
  2. ##  Common make include file for Dialup IP.
  3. ##  Copyright (c) 1991 Bolt Beranek and Newman, Inc.
  4. ##  All rights reserved.
  5. ##
  6. ##  Redistribution and use in source and binary forms are permitted
  7. ##  provided that: (1) source distributions retain this entire copyright
  8. ##  notice and comment, and (2) distributions including binaries display
  9. ##  the following acknowledgement:  ``This product includes software
  10. ##  developed by Bolt Beranek and Newman, Inc. and CREN/CSNET'' in the
  11. ##  documentation or other materials provided with the distribution and in
  12. ##  all advertising materials mentioning features or use of this software.
  13. ##  Neither the name of Bolt Beranek and Newman nor CREN/CSNET may be used
  14. ##  to endorse or promote products derived from this software without
  15. ##  specific prior written permission.
  16. ##
  17. ##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  18. ##  WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  19. ##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  20. ##
  21.  
  22. ##  Some versions of make need this, else they will call the user's shell.
  23. SHELL        = /bin/sh
  24.  
  25. ##  Directory where the system is.
  26. DIAL_BUILD    = /usr/dialupip
  27.  
  28. ##  Directory paths.  See include/dialupip.h before changing these.
  29. DIAL_ROOT    = /usr/dialupip
  30. BIN_DIR        = $(DIAL_ROOT)/bin
  31. LOG_DIR        = $(DIAL_ROOT)/log
  32. CONFIG_DIR    = $(DIAL_ROOT)/config
  33.  
  34. ##  Program flags.
  35. #    Set this to -g or -O, as appropriate.
  36. DEBUG_OR_OPT    = -g
  37. #    Pre-processor definitions, for use below.
  38. DEFS        = -I$(DIAL_BUILD)/src/include
  39. #    C compiler flags.
  40. CFLAGS        = $(DEFS) $(DEBUG_OR_OPT)
  41. #    Linker flags.
  42. LDFLAGS        = $(DEBUG_OR_OPT)
  43. #    Lint flags.
  44. LINTFLAGS    = $(DEFS)
  45. DIPLINTLIB    = $(DIAL_BUILD)/src/lib/llib-ldiputil.ln
  46. #    Library.
  47. DIPLIB        = $(DIAL_BUILD)/src/lib/libdiputil.a
  48.